/* Color Palette CSS Variables */
:root {
  --primary: #173F35;      /* Deep Forest Green */
  --secondary: #667A3E;    /* Olive Green */
  --accent: #E89A45;       /* Warm Apricot */
  --bg-main: #F7F3E8;      /* Cream */
  --bg-alt: #E8EEE4;       /* Soft Sage */
  --text-main: #202823;    /* Charcoal */
  --white: #FFFFFF;
  --transition-fast: 250ms ease-in-out;
  --transition-med: 350ms ease-in-out;
  --transition-slow: 700ms ease-in-out;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-main);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 100px 0;
}

.section-padding-sm {
  padding: 60px 0;
}

.center-text {
  text-align: center;
}

/* Typography Helpers */
h1, h2, h3, h4 {
  color: var(--primary);
  line-height: 1.2;
}

h1 { font-size: 2.75rem; font-weight: 800; margin-bottom: 20px; }
h2 { font-size: 2.25rem; font-weight: 700; margin-bottom: 16px; }
h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 12px; }

p { margin-bottom: 16px; opacity: 0.9; }

.label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
}

.btn-accent {
  background-color: var(--accent);
  color: var(--white);
}

.btn-accent:hover {
  background-color: #d18532;
  transform: translateY(-2px);
}

.btn-outline-light {
  border: 1px solid var(--white);
  color: var(--white);
}

.btn-outline-light:hover {
  background-color: var(--white);
  color: var(--primary);
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.section-header.center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

/* 1. NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 0;
  z-index: 1000;
  transition: all var(--transition-med);
}

.navbar.scrolled {
  padding: 12px 0;
  background-color: var(--bg-main);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 1px;
}

.logo.light { color: var(--white); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.nav-links a:hover { color: var(--secondary); }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--primary);
  margin: 5px 0;
}


/* MODERN HERO SECTION */
.hero {
  position: relative;
  padding: 140px 0 80px 0;
  background-color: var(--bg-main);
  overflow: hidden;
}

/* Subtle background accent blur */
.hero-bg-accent {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 154, 69, 0.15) 0%, rgba(247, 243, 232, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* Badge Pill */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background-color: var(--bg-alt);
  border: 1px solid rgba(102, 122, 62, 0.2);
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
}

/* Typography Adjustments */
.hero h1 {
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--text-main);
  opacity: 0.85;
  max-width: 540px;
  margin-bottom: 28px;
}

/* Buttons */
.hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.btn-glow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(232, 154, 69, 0.3);
}

.btn-glow:hover {
  box-shadow: 0 12px 25px rgba(232, 154, 69, 0.45);
}

.btn-outline-dark {
  border: 1px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline-dark:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* Micro-Trust Strip under buttons */
.hero-micro-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text-main);
  opacity: 0.8;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 20px;
}

.hero-micro-trust strong {
  color: var(--primary);
}

.hero-micro-trust .divider {
  color: var(--accent);
}

/* Visuals & Glassmorphism Card */
.hero-visual {
  position: relative;
}

.visual-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(23, 63, 53, 0.12);
}

.hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  transition: transform 1.2s ease;
}

.visual-frame:hover .hero-img {
  transform: scale(1);
}

/* Floating Glass Card */
.glass-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 16px 24px;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  animation: floatCard 4s ease-in-out infinite alternate;
}

.badge-icon {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.badge-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--primary);
}

.badge-text span {
  font-size: 0.775rem;
  opacity: 0.75;
}

@keyframes floatCard {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

/* Mobile Responsiveness for Hero */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero h1 { font-size: 2.5rem; }

  .glass-badge {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: -30px;
    width: fit-content;
  }
}

@media (max-width: 576px) {
  .hero { padding: 120px 0 60px 0; }
  .hero h1 { font-size: 2rem; }
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn { width: 100%; text-align: center; justify-content: center; }
  .hero-micro-trust { flex-direction: column; align-items: flex-start; gap: 4px; }
  .hero-micro-trust .divider { display: none; }
}

/* 3. TRUST / COMPANY STATS */
.stats-strip {
  background-color: var(--primary);
  color: var(--white);
  padding: 60px 0;
}

.stats-title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: var(--bg-alt);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 20px;
}

.stat-item .counter {
  display: inline-block;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--accent);
}

.stat-item span {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}

/* 4. ABOUT US */
.highlight-quote {
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  font-style: italic;
  font-weight: 600;
  margin: 24px 0;
  color: var(--primary);
}

.about-visual img {
  width: 100%;
  border-radius: 12px;
}

.timeline {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  border-top: 2px solid var(--bg-alt);
  padding-top: 20px;
}

.timeline-item strong {
  display: block;
  color: var(--secondary);
}

/* 5. PRODUCTS */
.products { background-color: var(--white); }

.product-card {
  background-color: var(--bg-main);
  border-radius: 12px;
  overflow: hidden;
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.card-img {
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card:hover .card-img img {
  transform: scale(1.06);
}

.card-body {
  padding: 30px;
}

.accent-line {
  display: block;
  width: 40px;
  height: 3px;
  background-color: var(--accent);
  margin: 12px 0 16px 0;
  transition: width var(--transition-med);
}

.product-card:hover .accent-line,
.why-card:hover .accent-line,
.pkg-card:hover .accent-line {
  width: 80px;
}

.card-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.card-link:hover { transform: translateX(5px); }

/* 6. MANUFACTURING */
.mfg-wrapper {
  position: relative;
  margin-top: 40px;
}

.mfg-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 12px;
}

.floating-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: -50px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.mfg-card {
  background-color: var(--white);
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  text-align: center;
}

.mfg-card h4 {
  font-size: 1.25rem;
  color: var(--secondary);
}

/* 7. QUALITY & SAFETY */
.quality { background-color: var(--bg-alt); }

.info-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
}

.badge {
  display: inline-block;
  background: var(--bg-alt);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 16px;
}

/* 8. GLOBAL MARKETS */
.global-markets {
  background-color: var(--primary);
  color: var(--white);
}

.global-markets h2 { color: var(--white); }
.global-markets .subtitle { opacity: 0.8; margin-bottom: 40px; }

.chips-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.chip {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.industries {
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* 9. PACKAGING */
.pkg-card {
  background-color: var(--white);
  padding: 40px;
  border-radius: 8px;
  text-align: center;
}

.pkg-val {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 12px;
}

/* 10. BUYER / TRADE INFO */
.trade-info { background-color: var(--bg-alt); }
.trade-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.trade-card {
  background-color: var(--white);
  padding: 20px;
  border-radius: 8px;
}

.trade-card h4 { font-size: 0.9rem; opacity: 0.7; }
.trade-card p { font-size: 1.1rem; font-weight: 700; margin: 0; color: var(--primary); }

/* 11. WHY CHOOSE US */
.why-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  transition: transform var(--transition-med);
}

.why-card:hover {
  transform: translateY(-6px);
}

/* CONTACT & FORM SECTION */
.contact-section {
  background-color: var(--primary);
  color: var(--white);
  position: relative;
}

.contact-grid {
  align-items: start;
  gap: 60px;
}

.contact-info .label {
  color: var(--accent);
}

.contact-info h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.contact-desc {
  opacity: 0.85;
  margin-bottom: 32px;
  font-size: 1.05rem;
}

/* Left Contact Cards */
.contact-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-tile {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 20px;
  border-radius: 10px;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.info-tile:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
}

.tile-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(232, 154, 69, 0.15);
  color: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-tile strong {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
}

.info-tile span {
  display: block;
  font-size: 0.85rem;
  color: var(--bg-alt);
  opacity: 0.8;
}

/* Right Form Styling */
.contact-form-card {
  background-color: var(--white);
  color: var(--text-main);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-form-card h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.form-subtext {
  font-size: 0.875rem;
  opacity: 0.7;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background-color: var(--bg-main);
  color: var(--text-main);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 154, 69, 0.2);
  background-color: var(--white);
}

.btn-full {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  margin-top: 8px;
}

/* Mini Footer */
.mini-footer {
  background-color: #0b221d;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.mini-footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mini-footer p {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .contact-form-card {
    padding: 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .mini-footer-container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}


/* 12. FINAL CTA */
/* .cta-section {
  background-color: var(--primary);
  color: var(--white);
}

.cta-section h2 { color: var(--white); }
.cta-section p { max-width: 600px; margin: 0 auto 30px auto; opacity: 0.9; }
.cta-section .hero-btns { justify-content: center; } */

/* 13. FOOTER */
/* .footer {
  background-color: #0e2721;
  color: var(--white);
  padding: 80px 0 40px 0;
}

.grid-footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: var(--white);
  opacity: 0.8;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.footer-links a:hover { opacity: 1; } */

/* ANIMATIONS ENGINE */
.fade-up, .fade-left {
  opacity: 0;
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.fade-up { transform: translateY(30px); }
.fade-left { transform: translateX(-30px); }

.fade-up.appear, .fade-left.appear {
  opacity: 1;
  transform: translate(0);
}

/* RESPONSIVE DESIGN (MEDIA QUERIES) */
@media (max-width: 992px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .floating-cards { grid-template-columns: repeat(2, 1fr); margin-top: 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .trade-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-footer { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  
  .mobile-toggle { display: block; }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-main);
    flex-direction: column;
    padding: 20px;
    display: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }

  .nav-links.active { display: flex; }
  .nav-cta { display: none; }

  .hero-btns { flex-direction: column; }
  .floating-card { position: static; margin-top: 20px; }
  .stats-grid { grid-template-columns: 1fr; }
  .floating-cards { grid-template-columns: 1fr; }
  .trade-grid { grid-template-columns: 1fr; }
  .industries { flex-direction: column; gap: 8px; }
}



/* ====================================
            FOOTER
====================================*/
.footer{
    background:#0b221d;
    border-top:2px solid #B78B47;
    padding:22px 0;
}

@media (max-width: 768px) {
    .footer {
        padding: 16px 0;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 12px 0;
    }
}

.footer-bottoms{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:18px;
}

@media (max-width: 768px) {
    .footer-bottoms {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-bottoms {
        gap: 10px;
    }
}

.footer-copy{
    flex:1;
}

.footer-copy p{
    color:#F5F1E8;
    font-size:15px;
    line-height:1.6;
}

@media (max-width: 768px) {
    .footer-copy p {
        font-size: 13px;
        line-height: 1.5;
    }
}

@media (max-width: 576px) {
    .footer-copy p {
        font-size: 12px;
        line-height: 1.5;
    }
}

.footer-copy span{
    color:#B78B47;
    font-weight:600;
}

.footer-copy a{
    color:#B78B47;
    transition:.35s ease;
}

.footer-copy a:hover{
    color:#E6C88B;
}

.footer-right{
    display:flex;
    align-items:center;
    gap:30px;
    margin-left:auto;
    flex-shrink:0;
}

@media (max-width: 768px) {
    .footer-right {
        margin-left: 0;
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .footer-right {
        flex-direction: column;
        gap: 12px;
    }
}

.footer-right img{
    width:180px;
    transition:.4s;
}

.footer-right img:hover{
    transform:scale(1.05);
}

@media (max-width: 768px) {
    .footer-right img {
        width: 150px;
    }
}

@media (max-width: 576px) {
    .footer-right img {
        width: 120px;
    }
}

/*==========================
      SCROLL BUTTON
==========================*/
.scroll-top{
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    width:65px;
    height:65px;
    border:2px solid #B78B47;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#B78B47;
    font-size:22px;
    transition:.4s;
    background:#0b221d;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.scroll-top:hover{
    background:#B78B47;
    color:#0F0F0F;
    transform:translateY(-6px);
}

@media (max-width: 768px) {
    .scroll-top {
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .scroll-top {
        right: 12px;
        bottom: 12px;
        width: 48px;
        height: 48px;
        font-size: 16px;
        border-width: 1.5px;
    }
}

/*==========================
      RESPONSIVE
==========================*/
@media(max-width:991px){
    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

    .footer-right{
        justify-content:center;
    }

        .footer-right img{
        width:150px;
    }

    .scroll-top{
        width:52px;
        height:52px;
        font-size:18px;
    }

    .footer-copy p{
        font-size:14px;
        line-height:1.5;
    }
}

@media(max-width:576px){
    .footer{
        padding:18px 0;
    }

    .footer-copy p{
        font-size:13px;
        line-height:1.5;
    }

    .footer-right{
        flex-direction:column;
        gap:20px;
    }

    .footer-right img{
        width:130px;
    }
}


